home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / thor / bbsread / cfgfarea.br < prev    next >
Text File  |  1996-11-10  |  535b  |  32 lines

  1. /* $VER: CfgFArea.br 3.2 (07.06.94)
  2. **
  3. ** Stubb to use CONFIGFAREA from cli 
  4. */
  5.  
  6.     parse arg arguments
  7.  
  8.     address BBSREAD 
  9.  
  10.     if ~show('p', 'BBSREAD') then do
  11.         address command
  12.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  13.             "WaitForPort BBSREAD"
  14.     end
  15.  
  16.     if arguments = '' then 
  17.     do
  18.         GETCOMMANDINFO CONFIGFAREA TEMP
  19.  
  20.         say 'CfgFArea.br 3.2 (07.06.94)'
  21.         say 'Lets you use the CONFIGFAREA arexx command from CLI.'
  22.         say 'Template:' TEMP
  23.         exit
  24.     end
  25.  
  26.     CONFIGFAREA arguments
  27.     if(rc ~= 0) then
  28.     do
  29.         say BBSREAD.LASTERROR
  30.         exit
  31.     end
  32.